Learn Poker Online

Customize > Additional CSS
or into the page's custom CSS block
============================================================ -->

/* ── PS-LEARN: Root tokens ─────────────────────────────────── */
.ps-learn-page {
--ps-green: #1a9e6e;
--ps-green-dark: #0f7050;
--ps-green-light: #e8f7f2;
--ps-gold: #c8922a;
--ps-gold-light: #fdf3e3;
--ps-dark: #111827;
--ps-dark-2: #1c2635;
--ps-border: #e5e7eb;
--ps-radius: 10px;
--ps-radius-sm: 6px;
--ps-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* ── PS-LEARN: Hero banner ─────────────────────────────────── */
.ps-learn-hero {
background: linear-gradient(135deg, #0d1420 0%, #0a1d14 55%, #0d1420 100%);
border-radius: var(--ps-radius);
padding: 56px 48px 52px;
text-align: center;
margin-bottom: 36px;
position: relative;
overflow: hidden;
}
.ps-learn-hero::before {
content: '';
position: absolute;
top: -60px; left: 50%; transform: translateX(-50%);
width: 600px; height: 500px;
background: radial-gradient(circle, rgba(26,158,110,0.10) 0%, transparent 70%);
pointer-events: none;
}
.ps-learn-hero__eyebrow {
display: inline-block;
background: rgba(26,158,110,0.12);
border: 1px solid rgba(26,158,110,0.35);
color: var(--ps-green);
font-size: 11px;
font-weight: 700;
padding: 4px 14px;
border-radius: 20px;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 20px;
}
.ps-learn-hero h1 {
font-size: clamp(30px, 4.5vw, 50px);
font-weight: 800;
line-height: 1.1;
letter-spacing: -0.02em;
color: #ffffff;
margin-bottom: 16px !important;
}
.ps-learn-hero h1 em {
font-style: normal;
color: var(--ps-green);
}
.ps-learn-hero__sub {
font-size: 16px;
color: rgba(255,255,255,0.55);
max-width: 500px;
margin: 0 auto 32px;
line-height: 1.75;
}
.ps-learn-hero__actions {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}
.ps-learn-hero__code {
margin-top: 18px;
font-size: 12px;
color: rgba(255,255,255,0.3);
}
.ps-learn-hero__code code {
background: rgba(200,146,42,0.15);
color: var(--ps-gold);
padding: 2px 9px;
border-radius: 4px;
font-size: 13px;
font-family: monospace;
letter-spacing: 0.06em;
}

/* ── PS-LEARN: Buttons ─────────────────────────────────────── */
.ps-btn {
display: inline-block;
padding: 13px 28px;
border-radius: var(--ps-radius-sm);
font-size: 14px;
font-weight: 700;
text-decoration: none !important;
cursor: pointer;
transition: background 0.18s, transform 0.1s, border-color 0.18s;
border: none;
}
.ps-btn--green {
background: var(--ps-green);
color: #ffffff !important;
}
.ps-btn--green:hover {
background: var(--ps-green-dark);
transform: translateY(-1px);
color: #ffffff !important;
}
.ps-btn--outline {
background: transparent;
color: rgba(255,255,255,0.7) !important;
border: 1.5px solid rgba(255,255,255,0.18) !important;
}
.ps-btn--outline:hover {
border-color: rgba(255,255,255,0.4) !important;
color: #ffffff !important;
}

/* ── PS-LEARN: Stats strip ─────────────────────────────────── */
.ps-learn-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
gap: 1px;
background: #d1d5db;
border: 1px solid #d1d5db;
border-radius: var(--ps-radius);
overflow: hidden;
margin-bottom: 40px;
}
.ps-learn-stats__cell {
background: #ffffff;
padding: 22px 16px;
text-align: center;
}
.ps-learn-stats__value {
font-size: 30px;
font-weight: 800;
color: var(--ps-dark);
letter-spacing: -0.03em;
line-height: 1;
margin-bottom: 6px;
}
.ps-learn-stats__value em {
font-style: normal;
color: var(--ps-green);
}
.ps-learn-stats__label {
font-size: 11px;
color: #6b7280;
text-transform: uppercase;
letter-spacing: 0.07em;
font-weight: 600;
}

/* ── PS-LEARN: Code callout ────────────────────────────────── */
.ps-code-callout {
background: var(--ps-gold-light);
border: 1.5px solid rgba(200,146,42,0.35);
border-radius: var(--ps-radius);
padding: 20px 28px;
display: flex;
align-items: center;
gap: 18px;
margin: 32px 0;
flex-wrap: wrap;
}
.ps-code-callout__label {
font-size: 13px;
color: #78561a;
font-weight: 600;
flex: 1;
min-width: 140px;
}
.ps-code-callout__code {
font-family: monospace;
font-size: 22px;
font-weight: 800;
color: var(--ps-gold);
letter-spacing: 0.12em;
background: rgba(200,146,42,0.10);
padding: 8px 20px;
border-radius: var(--ps-radius-sm);
}
.ps-code-callout__note {
font-size: 12px;
color: #9a7030;
flex-basis: 100%;
}

/* ── PS-LEARN: Steps widget ────────────────────────────────── */
.ps-steps {
counter-reset: ps-step;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
gap: 20px;
margin: 28px 0;
}
.ps-step {
background: #ffffff;
border: 1px solid var(--ps-border);
border-radius: var(--ps-radius);
padding: 26px 22px 22px;
position: relative;
box-shadow: var(--ps-shadow);
counter-increment: ps-step;
}
.ps-step::before {
content: counter(ps-step);
position: absolute;
top: -14px; left: 22px;
width: 28px; height: 28px;
background: var(--ps-green);
color: #ffffff;
font-size: 13px;
font-weight: 700;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
line-height: 28px;
text-align: center;
}
.ps-step__title {
font-size: 15px;
font-weight: 700;
color: var(--ps-dark);
margin-bottom: 8px;
margin-top: 4px;
}
.ps-step__desc {
font-size: 13px;
color: #6b7280;
line-height: 1.65;
}

/* ── PS-LEARN: Plans widget ────────────────────────────────── */
.ps-plans {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin: 28px 0;
}
@media (max-width: 580px) {
.ps-plans { grid-template-columns: 1fr; }
.ps-learn-hero { padding: 40px 24px 36px; }
.ps-learn-stats__value { font-size: 24px; }
}
.ps-plan {
background: #ffffff;
border: 1px solid var(--ps-border);
border-radius: var(--ps-radius);
padding: 28px 24px;
box-shadow: var(--ps-shadow);
position: relative;
}
.ps-plan--featured {
border: 2px solid var(--ps-green);
background: #f0fbf6;
}
.ps-plan__badge {
position: absolute;
top: -13px; left: 50%; transform: translateX(-50%);
background: var(--ps-green);
color: #ffffff;
font-size: 10px;
font-weight: 700;
padding: 4px 14px;
border-radius: 20px;
letter-spacing: 0.07em;
text-transform: uppercase;
white-space: nowrap;
}
.ps-plan__tier {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.09em;
color: #9ca3af;
margin-bottom: 8px;
}
.ps-plan__price {
font-size: 36px;
font-weight: 800;
color: var(--ps-dark);
letter-spacing: -0.03em;
margin-bottom: 4px;
}
.ps-plan__note {
font-size: 12px;
color: #9ca3af;
margin-bottom: 20px;
padding-bottom: 18px;
border-bottom: 1px solid var(--ps-border);
}
.ps-plan ul {
list-style: none !important;
padding: 0 !important;
margin: 0 0 24px !important;
}
.ps-plan ul li {
font-size: 13px;
color: #374151;
padding: 5px 0;
display: flex;
align-items: flex-start;
gap: 8px;
}
.ps-plan ul li::before {
content: '✓';
color: var(--ps-green);
font-weight: 700;
flex-shrink: 0;
}

/* ── PS-LEARN: Benefits grid ───────────────────────────────── */
.ps-benefits {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 18px;
margin: 28px 0;
}
.ps-benefit {
background: #ffffff;
border: 1px solid var(--ps-border);
border-radius: var(--ps-radius);
padding: 22px 20px;
box-shadow: var(--ps-shadow);
}
.ps-benefit__icon {
width: 38px; height: 38px;
background: var(--ps-green-light);
border-radius: var(--ps-radius-sm);
display: flex; align-items: center; justify-content: center;
font-size: 17px;
margin-bottom: 14px;
}
.ps-benefit__title {
font-size: 14px;
font-weight: 700;
color: var(--ps-dark);
margin-bottom: 6px;
}
.ps-benefit__desc {
font-size: 13px;
color: #6b7280;
line-height: 1.65;
}

/* ── PS-LEARN: About strip ─────────────────────────────────── */
.ps-about-strip {
background: var(--ps-dark);
border-radius: var(--ps-radius);
padding: 40px 40px;
display: flex;
align-items: center;
gap: 32px;
flex-wrap: wrap;
margin: 36px 0;
}
.ps-about-strip__logo {
font-size: 22px;
font-weight: 800;
color: #ffffff;
letter-spacing: -0.01em;
white-space: nowrap;
}
.ps-about-strip__logo em { font-style: normal; color: var(--ps-green); }
.ps-about-strip__text {
font-size: 14px;
color: rgba(255,255,255,0.55);
line-height: 1.75;
flex: 1;
min-width: 220px;
}
.ps-about-strip__links {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.ps-about-strip__link {
font-size: 12px;
color: rgba(255,255,255,0.55) !important;
text-decoration: none !important;
border: 1px solid rgba(255,255,255,0.15);
padding: 5px 14px;
border-radius: 20px;
transition: 0.18s;
}
.ps-about-strip__link:hover {
color: #ffffff !important;
border-color: rgba(255,255,255,0.4);
}

/* ── PS-LEARN: CTA box ─────────────────────────────────────── */
.ps-cta-box {
background: linear-gradient(135deg, #0d1420 0%, #0a1d14 60%, #0d1420 100%);
border-radius: var(--ps-radius);
padding: 52px 48px;
text-align: center;
margin: 36px 0;
}
.ps-cta-box h2 {
font-size: clamp(24px, 3.5vw, 36px);
font-weight: 800;
letter-spacing: -0.02em;
color: #ffffff;
margin-bottom: 12px !important;
}
.ps-cta-box h2 em { font-style: normal; color: var(--ps-green); }
.ps-cta-box p {
font-size: 15px;
color: rgba(255,255,255,0.5);
margin-bottom: 30px;
line-height: 1.75;
}
.ps-cta-box__legal {
margin-top: 14px;
font-size: 11px;
color: rgba(255,255,255,0.25);
}

/* ── PS-LEARN: Compliance / T&C box ───────────────────────── */
.ps-tc-box {
background: #f9fafb;
border: 1px solid var(--ps-border);
border-left: 4px solid var(--ps-green);
border-radius: var(--ps-radius-sm);
padding: 18px 22px;
font-size: 12px;
color: #6b7280;
line-height: 1.75;
margin: 28px 0;
}
.ps-tc-box strong { color: #374151; }

PokerStrategy Exclusive Programme

Learn Online Poker
with PokerStrategy

Join the PokerStrategy learning programme and get $50 in promo credit plus 7 free days on a professional GTO solver — completely free.

Use code PS50FREE at sign-up

$50
Promo credit
7 days
Free GTO access
0
Cost to start
GTO+
Pro solver included

Learn Online Poker with PokerStrategy

Whether you're picking up your first hand or looking to sharpen a winning strategy, PokerStrategy is the best place to learn online poker. Our exclusive learning programme gives you immediate access to $50 in promo credit and a free 7-day trial of GTOStrategy.com — the professional GTO solver used by serious players worldwide.

This page covers everything you need to know: how to claim your rewards, what the programme includes, and why PokerStrategy is the platform thousands of players trust to improve their game.

Your exclusive PokerStrategy promo code — use at sign-up
PS50FREE
Registrations open now  ·  Limited places available

What You Get with the PokerStrategy Learn Programme

The PokerStrategy Learn programme has two tiers. Both include $50 in promo credit and free GTOStrategy.com access — but the VIP tier adds live coaching, hand reviews, and exclusive table access curated by our editorial and coaching team.

1. Standard — Best for New Poker Players

PokerStrategy Learn Online Poker - Standard Plan

Our Rating: ⭐⭐⭐⭐⭐

The Standard plan is the easiest way to start learning online poker for free. Register with your email, follow the step-by-step onboarding instructions, and complete a simple mission to unlock $50 in promo credit plus a 7-day free trial of GTOStrategy.com — the professional GTO solver used by winning players at every stake level.

No deposit needed. No wagering requirements. The credit is yours once you complete the mission.

Why Choose the Standard Plan?

  • $50 promo credit: Earn real credit after completing your onboarding mission
  • GTO solver access: 7 days free on GTOStrategy.com — a professional-grade study tool
  • No deposit needed: Zero cost to claim, zero risk
  • Simple process: Full instructions sent by email — just follow the steps
  • PokerStrategy community: Join one of the most active poker learning communities online, with access to forums, guides, and strategy content

What Could Be Improved

  • No coaching included: Live coaching sessions are reserved for VIP members
  • Trial period: GTOStrategy.com access is limited to 7 days on the Standard plan

"PokerStrategy's learning content is the best I've found anywhere — structured, clear, and actually useful at the tables." — Thomas R., Trustpilot

Fun Fact

GTOStrategy.com is the same GTO solver used by professional coaches when preparing training content. A GTO (Game Theory Optimal) solver calculates the mathematically correct strategy for any poker situation — giving you the same edge that the pros study from.

2. VIP — Best for Serious Poker Students

PokerStrategy Learn Online Poker - VIP Plan

Our Rating: ⭐⭐⭐⭐⭐

The VIP programme is reserved for serious players selected by the PokerStrategy coaching team. You receive the same $50 credit and free GTOStrategy.com access as the Standard plan — plus live group coaching sessions, personalised hand reviews, and access to exclusive private tables. VIP places are strictly limited.

Why Choose the VIP Plan?

  • $50 credit (guaranteed): Same guaranteed reward as the Standard plan
  • GTOStrategy Premium: Full feature access — not just the trial tier
  • Live group coaching sessions: Attend sessions run by the PokerStrategy coaching team
  • Interactive hand reviews: Submit your own hands and receive personalised written feedback
  • Private VIP tables: Play in exclusive games with other serious PokerStrategy students
  • Priority support: Direct access to the PokerStrategy coaching team at any time

What Could Be Improved

  • Invite-only: VIP access requires approval from the PokerStrategy team — not immediately open to everyone
  • Coaching schedule: Group session dates vary; additional exclusive content is still in preparation

"The VIP hand review sessions took my game to another level. The feedback from the PokerStrategy team is direct, honest, and exactly what you need to hear." — Marco D., PokerStrategy community

Fun Fact

PokerStrategy has helped more than 10 million players learn poker since launching its first strategy content. The VIP programme represents the most hands-on coaching experience PokerStrategy has ever offered.

PokerStrategy Learn Poker Plans Compared

Here's a direct side-by-side of what each plan includes:

Feature Standard VIP
Promo credit $50 after mission $50 (guaranteed)
GTOStrategy.com access 7-day free trial Premium — full access
PokerStrategy community
Live group coaching ✓ PokerStrategy coaches
Hand review & feedback ✓ personalised
Private VIP tables
Priority support
Availability Open — sign up now Invite only

Standard
Free
Instructions sent by email after registration
  • $50 promo credit after mission
  • 7-day GTOStrategy.com trial
  • PokerStrategy community access
  • Step-by-step email onboarding

Start for free →

VIP places are strictly limited. Contact the PokerStrategy team for details.

How to Claim Your $50 + Free GTO Access

The process is straightforward. Register, follow the instructions in your welcome email, and your rewards are credited automatically — no deposit, no complicated requirements.

Register your email
Enter your email on the PokerStrategy sign-up page to receive your full onboarding instructions.
Follow the steps
Complete the simple mission outlined in your welcome email — it takes only a few minutes.
Claim your rewards
Receive $50 in promo credit and your 7-day free GTOStrategy.com trial once the mission is complete.
Start learning
Use the GTO solver to analyse real hands, study optimal ranges, and improve faster than studying alone.

Why Learn Poker with PokerStrategy?

PokerStrategy has been the internet's leading poker learning platform for over a decade. The PokerStrategy Learn programme gives you the structured content, professional tools, and coaching access you need to improve — all in one place.

💰
$50 promo credit
Complete your onboarding mission and earn real credit — no deposit, no strings attached.
🧠
Professional GTO solver
7 days free on GTOStrategy.com — the professional solver used by winning players and coaches worldwide.
📈
Improve fast
Study your decisions against GTO solutions and close the leaks in your game more efficiently than any other method.
🎓
Expert coaching
VIP members get live group sessions and personalised hand reviews from the PokerStrategy coaching team.

Expert Tips for Learning Poker Online

Getting started is easy — improving consistently takes the right approach. These tips from the PokerStrategy editorial team will help you make the most of your $50 credit and GTO trial.

  • Start with the fundamentals: Before diving into a GTO solver, make sure you understand hand rankings, position, and pot odds. PokerStrategy's beginner guides cover all of this in plain language.
  • Use the GTO trial strategically: During your 7-day free trial, focus on the spots you lose money in most often — calling too wide against 3-bets, for example, or over-bluffing on the river. Solver time is most valuable when it's targeted.
  • Don't just study — play: The $50 promo credit is there to be used. Apply what you learn at the tables, then review your sessions. Study and play in parallel, not in sequence.
  • Manage your bankroll: Even with promo credit behind you, follow solid bankroll rules. Risk no more than 5% of your total bankroll in any single session — this keeps you playing your best game, not a scared one.
  • Apply for VIP if you're serious: If you want personalised coaching, hand reviews, and access to private tables, request VIP access when you register. Places fill quickly and are limited.

PokerStrategy is one of the world's largest poker education platforms, with over 10 million registered members. From complete beginners to experienced grinders, PokerStrategy delivers structured strategy content, coaching, and tools to help every player build a game they can trust — at every stake level.

Key Takeaways

The PokerStrategy Learn programme is one of the best ways to start your poker journey — or take your existing game to the next level — at zero cost.

  • We recommend registering immediately — places are limited and the $50 promo credit will not be available indefinitely.
  • The free GTO trial is genuinely valuable: GTOStrategy.com normally costs a monthly subscription. Seven days gives you enough time to make meaningful progress on the most common leaks in your game.
  • Apply for VIP if you're ready to commit: Live coaching and personalised hand reviews make the VIP tier one of the highest-value poker learning offers available online today.

Terms & Conditions Summary: This offer is available to new PokerStrategy registrants only. The $50 promo credit is awarded upon successful completion of the onboarding mission as described in the welcome email. The GTOStrategy.com 7-day trial begins on activation. This promotion is available to residents of regions where such services are legally authorised. No purchase necessary. One account per person. PokerStrategy reserves the right to withdraw or modify this offer at any time. Full terms apply — see your welcome email for complete details. 18+ only. Please gamble responsibly.

Start learning poker today

Register your email, complete the mission, and claim your $50 promo credit plus 7 days free on GTOStrategy.com. No deposit. No risk. Just better poker.

Sign up now — it's free

Learn Online Poker — FAQs

What is the PokerStrategy Learn programme?

How do I get my $50 promo credit?

What is a GTO solver and why do I need one?

How do I get VIP access?

Is this offer available in my country?

Do I need to make a deposit to claim the $50 credit?