Discipline Entertainment

Choose Your Subscription

Instant access to every video. New scenes added weekly.


Monthly subscription preview

Monthly

Full library access, billed monthly. Cancel anytime.

Choose Monthly


3-month subscription preview

3 Months

Save vs. monthly with a 3-month pass. Stream and download.

Choose 3 Months


1-year subscription preview

1 Year

All content for a full year. New updates every week.

Choose 1 Year


Lifetime subscription preview

Lifetime

Pay once. Lifetime access to all past and future videos.

Choose Lifetime

/* === Force 2-column layout on wider screens === */
.subs-grid{
display: grid;
grid-template-columns: 1fr; /* single column on mobile */
gap: 1rem;
}

/* 2 columns for tablets/desktops */
@media (min-width: 900px){
.subs-grid{
grid-template-columns: 1fr 1fr; /* two equal halves */
}
}

.subs-card{ grid-column: auto; }