/* ==========================================================
   ROOT VARIABLES
========================================================== */
:root {
    --font-primary: Arial, Helvetica, sans-serif;

    --color-background: #000000;
    --color-surface: #080808;
    --color-border: #242424;

    --color-text-primary: #FFFFFF;
    --color-text-secondary: #777777;

    --color-profit: #00D100;
    --color-loss: #FF0000;

    --color-accent: #00D100;

    --color-button-primary: #242424;
    --color-button-primary-hover: #FFFFFF;

    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --shadow-card: 0 0 8px rgba(255,255,255,.08);
    --shadow-glow1: 0 0 4px rgba(255,255,255,.25);
	--shadow-glow2: 0 0 4px rgba(0,209,0,1);
	--shadow-glow3: 0 0 4px rgba(155,155,155,1);
}
/* ==========================================================
   GLOBAL RESET
========================================================== */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: var(--color-background);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
}
h1 span,
h2 span,
h3 span {
    color: var(--color-accent);
}
/* ==========================================================
   GLOBAL LAYOUT
========================================================== */
.page-container {
    width: 100%;
    min-width: 320px;
    max-width: 1920px;
    margin: 20px auto;
    flex: 1;
}
/* ==========================================================
   GLOBAL PAGE LAYOUTS
========================================================== */
.page-layout-content {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto 80px auto;
	padding: 20px 40px 20px 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}
/* ==========================================================
   NAV BAR
========================================================== */
.top-nav {
    width: 100%;
    min-width: 320px;
    height: 60px;
    background: var(--color-background);
	border-bottom: 4px solid var(--color-border);
	margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 30px 10px;
	gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
}
.logo a {
    color: var(--color-text-primary);
    text-decoration: none;
}
.logo img {
    display: block;
}
.logo span {
    color: var(--color-accent);
}
.nav-buttons {
    display: flex;
    gap: 10px;
}
/* ==========================================================
   HERO LAYOUT Main page introduction
========================================================== */
.hero-layout {
    width: 100%;
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
}
.hero-layout h1 {
    margin: 0 0 20px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-text-primary);
}
.hero-layout h1 span {
    color: var(--color-accent);
}
.hero-layout p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-secondary);
    font-size: 18px;
    line-height: 1.7;
}
/* ==========================================================
   FULL WIDTH CONTENT LAYOUT
========================================================== */
.full-width-layout {
    width: 100%;
    margin: 50px 0;
    padding: 20px 0;
    text-align: left;
}
.full-width-layout h2 {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text-primary);
}
.full-width-layout h2 span {
    color: var(--color-accent);
}
.full-width-layout p {
    max-width: 900px;
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.7;
}
/* ==========================================================
   STATEMENT LAYOUT Full width centered message
========================================================== */
.statement-layout {
    width: 100%;
    margin: 80px auto;
    padding: 20px 0;
    text-align: center;
}
.statement-layout h2 {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text-primary);
}
.statement-layout h2 span {
    color: var(--color-accent);
}
.statement-layout p {
    max-width: 800px;
    margin: 0 auto 16px;
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.7;
}
.statement-layout-panel {
    padding: 40px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}
/* ==========================================================
   SPLIT LAYOUT Content + supporting panel
========================================================== */
.split-layout {
    width: 100%;
    max-width: 800px;
    margin: 70px auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: center;
}
.split-content {
    padding: 10px 0;
}
.split-content h2 {
    margin: 0 0 20px;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--color-text-primary);
}
.split-content h2 span {
    color: var(--color-accent);
}
.split-content p {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.7;
}
.split-panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px;
}
.split-panel h3 {
    margin: 0 0 15px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--color-text-primary);
}
.split-panel h3 span {
    color: var(--color-accent);
}
.split-panel p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.7;
}
.split-panel-list {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.split-panel-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}
.split-panel-item:last-child {
    border-bottom: none;
}
.split-panel-item strong {
    color: var(--color-text-primary);
    font-size: 15px;
    font-weight: 700;
}
.split-panel-item span {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}
/* ==========================================================
   FEATURE GRID LAYOUT
========================================================== */
.feature-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 50px 0;
}
/* ==========================================================
   FEATURE CARD
========================================================== */
.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: border-color .1s ease, box-shadow .1s ease;
}
.feature-card:hover {
    border-color: var(--color-text-primary);
    box-shadow: var(--shadow-glow1);
}
.feature-card h3 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-primary);
}
.feature-card h3 span {
    color: var(--color-accent);
}
.feature-card p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.7;
}
.feature-card ul {
    margin: 20px 0 0;
    padding-left: 20px;
    color: var(--color-text-secondary);
}
.feature-card li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.feature-card strong {
    color: var(--color-text-primary);
}
/* ==========================================================
   HOMEPAGE GRID
========================================================== */
.page-layout-dashboard {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px 260px;
    grid-template-areas: "main sidebar ads";
	gap: 24px;
}
.main-content {
    grid-area: main;
}
.sidebar {
    grid-area: sidebar;
}
.ads {
    grid-area: ads;
}
/* ==========================================================
   FORM CONTROLS
========================================================== */
.form-primary {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 30px;
}
.form-input {
    flex: 1 1 140px;
    min-width: 80px;
    min-height: 42px;
    padding: 0 16px;
    background: var(--color-surface);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: border-color .1s ease, box-shadow .1s ease;
}
select.form-input {
    background-color: var(--color-surface);
    color: var(--color-text-secondary);
}
.form-input::placeholder {
    color: var(--color-text-secondary);
}
.form-input:focus {
    outline: none;
    border-color: var(--color-text-primary);
    box-shadow: var(--shadow-glow1);
}
.form-input-small {
    flex: 0 1 150px;
}
/* ==========================================================
   BUTTON COMPONENTS
========================================================== */
.modal-dialog {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
	margin: 20px;
}
.modal-dialog.active {
    display: flex;
}
.modal-dialog-card {
	position: relative;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: rgba(8,8,8,.92);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(8px);
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color .1s ease;
}
.modal-close:hover {
    color: var(--color-text-primary);
}
/* ==========================================================
   BUTTON COMPONENTS
========================================================== */
.button-outline {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    transition: border-color .1s ease, box-shadow .1s ease;
}
.button-outline:hover {
    border-color: var(--color-text-primary);
    box-shadow: var(--shadow-glow1);
    cursor: pointer;
}
.button-primary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-accent);
    transition: border-color .1s ease, box-shadow .1s ease;
}
.button-primary:hover {
    border-color: var(--color-text-primary);
    box-shadow: var(--shadow-glow2);
    cursor: pointer;
}
.button-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid transparent;
    transition: box-shadow .1s ease;
    box-shadow: var(--shadow-glow1);
}
.button-secondary:hover {
    box-shadow: var(--shadow-glow3);
    cursor: pointer;
}
.button-outline,
.button-primary,
.button-secondary {
	font-family: inherit;
    cursor: pointer;	
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    text-decoration: none;
}
.button-right {
    display: flex;
    width: fit-content;
    margin-left: auto;
	gap: 8px;
}
.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}
/* ==========================================================
   SECTION COMPONENTS
========================================================== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.section-title {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 24px;
    font-weight: 700;
}
.section-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: inherit;
    transition: color .1s ease;
}
.section-link:hover {
    color: var(--color-text-primary);
}
/* ==========================================================
   BORDER FLASH
========================================================== */
.border-flash {
    animation: borderFlash 800ms ease;
}
@keyframes borderFlash {
    0% { border-color: var(--color-border); box-shadow: 0 0 0 rgba(230,57,70,0); }
    40% { border-color: var(--color-profit); box-shadow: 0 0 22px rgba(255, 255, 255, 0.25); }
    100% { border-color: var(--color-border); box-shadow: 0 0 0 rgba(230,57,70,0); }
}
/* ==========================================================
   GENERIC CARD BASE
========================================================== */
.card {
    background: var(--color-surface);
    border:1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
/* ==========================================================
   TOP TRADES SECTION
========================================================== */
.top-trades {
    width: 100%;
	margin-bottom: 40px;
	padding: 20px;
}
/* ==========================================================
   TRADE CARD LIST
========================================================== */
.trade-card-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* ==========================================================
   TRADE CARD FRAME
========================================================== */
.trade-card-frame {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    font-size: 14px;
    letter-spacing: 1px;
}
/* ==========================================================
   TRADE CARD
========================================================== */
.trade-card {
    display: block;
    width: 100%;
	min-height: 170px;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 4px 10px 4px 10px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .1s ease;
	letter-spacing: 1px;
}
.trade-card:hover {
    box-shadow: var(--shadow-glow2);
}
/* ==========================================================
   TRADE CARD TABLE
========================================================== */
.trade-card-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.trade-card-row:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}
.trade-card-cell {
    padding: 8px 14px;
    vertical-align: top;
    overflow: hidden;
}
/* Column Sizes */
.trade-card-cell-trader {
    width: 40%;
}
.trade-card-cell-position {
    width: 35%;
}
.trade-card-cell-size {
    width: 25%;
}
/* ==========================================================
   TRADE CARD CONTENT
========================================================== */
.trade-card-label {
    color: var(--color-text-secondary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.trade-card-value {
    color: var(--color-text-primary);
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.trade-card-row:first-child .trade-card-value {
    font-size: 18px;
    font-weight: 700;
}
.trade-card-position {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}
.trade-card-buy {
    background: rgba(34,197,94,.15);
    color: var(--color-profit);
}
.trade-card-sell {
    background: rgba(255,77,90,.15);
    color: var(--color-loss);
}
.trade-card-profit {
    color: var(--color-profit);
}
.trade-card-loss {
    color: var(--color-loss);
}
/* ==========================================================
   TOP TRADERS SECTION
========================================================== */
.top-traders {
    width: 100%;
	padding: 20px;
}
/* ==========================================================
   TRADER GRID
========================================================== */
.trader-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
/* ==========================================================
   TRADER CARD FRAME
========================================================== */
.trader-card-frame {
    width: 100%;
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    font-size: 14px;
    letter-spacing: 1px;
}
/* ==========================================================
   TRADER CARD
========================================================== */
.trader-card {
    width: 100%;
	min-height: 270px;
    display: block;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 18px;
    text-decoration: none;
    color: inherit;
    transition: border-color .1s ease, box-shadow .1s ease;
	letter-spacing: 1px;
}
.trader-card:hover {
    border-color: var(--color-text-primary);
    box-shadow: var(--shadow-glow1);
}
/* ==========================================================
   TRADER CARD HEADER
========================================================== */
.trader-card-header-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin-bottom: 12px;
}
.trader-card-header-row {
    width: 100%;
}
.trader-card-name {
    width: 75%;
    color: var(--color-text-primary);
    font-size: 18px;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.trader-card-rank {
    width: 25%;
    color: var(--color-accent);
    font-size: 18px;
    font-weight: 700;
    text-align: right;
}
/* ==========================================================
   TRADER CARD TABLE
========================================================== */
.trader-card-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.trader-card-row:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}
.trader-card-table td {
    padding: 8px 0;
}
/* ==========================================================
   TRADER CARD CONTENT
========================================================== */
.trader-card-label {
    width: 50%;
    color: var(--color-text-secondary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.trader-card-value {
    width: 50%;
    color: var(--color-text-primary);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.trader-card-value-profit {
    color: var(--color-profit);
}
.trader-card-value-loss {
    color: var(--color-loss);
}
/* ==========================================================
   TRADER PROFILE
========================================================== */
.trader-profile-header {
    padding: 24px;
}
.trader-profile-header-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}
.trader-profile-description {
    background:var(--color-surface);
    border:1px solid var(--color-border);
    border-radius:var(--radius-lg);
    padding:24px;
}
.trader-profile-description h3 {
    margin:0 0 15px;
    color:var(--color-text-primary);
}
.trader-profile-description p {
    color:var(--color-text-secondary);
    line-height:1.7;
}
.trader-profile-name {
    color: var(--color-text-primary);
    font-size: 32px;
    font-weight: 800;
	margin:0;
}
.trader-profile-meta {
    color: var(--color-text-primary);
	font-weight: 700;
    margin-top: 8px;
}
.trader-profile-price {
    color: var(--color-text-secondary);
}
.trader-profile-info {
    padding:10px 0;
	text-align:center;
}
.trader-profile-info .button-group {
    justify-content:center;
}
.trader-profile-panel {
    padding: 24px;
    margin-top: 24px;
}
.trader-performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
	padding: 12px;
}
.trader-performance-panel {
    padding:12px;
    margin-top:24px;
}
.trader-performance-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
}
.trader-performance-label {
    color: var(--color-text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.trader-performance-value {
    color: var(--color-text-primary);
    font-size: 26px;
    font-weight: 800;
    margin-top: 8px;
}
.trader-performance-profit {
    color: var(--color-profit);
}
.trader-performance-loss {
    color: var(--color-loss);
}
.trader-chart-container {
    width: 96%;
    margin: auto;
}
/* ==========================================================
   SIDEBAR CARDS
========================================================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 12px;
}
.sidebar-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px;
}
.sidebar-card-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}
.sidebar-card-subtitle {
    margin: 0 0 18px 0;
    color: var(--color-text-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.sidebar-card-text {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.sidebar-card-list {
    margin-top:20px;
}
.sidebar-card-item {
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid var(--color-border);
}
.sidebar-card-item span {
    color: var(--color-text-secondary);
}
.sidebar-card-item strong {
    color: var(--color-text-primary);
}
/* ==========================================================
   ADS COMPONENTS
========================================================== */
.ads {
	min-width: 260px;
    max-width: 260px;
}
.ad-slot {
    width: 240px;
    height: 400px;
	margin: 22px auto;
    opacity: 1;
    transition: opacity 1.0s ease;
	will-change: opacity;
	/*
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
	*/
}
.ad-slot img {
	display: block;
    width: 100%;
    height: 100%;
	border-radius: var(--radius-lg);
	opacity: 0;
    transition: opacity 0.5s ease;
    filter: brightness(0.8) contrast(1.15) saturate(0.75);
}
.ad-slot img.ad-loaded {
    opacity: 1;
}
.ad-slot-fade {
    opacity: 0;
}
/* ==========================================================
   FOOTER
========================================================== */
.footer {
    width: 100%;
    min-width: 320px;
    margin-top: auto;
    display: block;
    background: var(--color-background);
    border-top: 4px solid var(--color-border);
    padding: 50px 30px 30px;
}
.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr repeat(3,1fr);
    gap: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}
.footer-logo a {
	color: var(--color-text-primary);
    text-decoration: none;
}
.footer-logo span {
    color: var(--color-accent);
}
.footer-brand p {
    max-width: 320px;
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
}
.footer-tagline {
    margin-top: 26px;
    font-size: 16px;
    font-weight: 700;
}
.footer-tagline span {
    color: var(--color-accent);
}
.footer-column h3 {
    font-size: 15px;
    margin-bottom: 18px;
}
.footer-column a {
    display: block;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
}
.footer-column a:hover {
    color: var(--color-text-primary);
}
.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 2px solid var(--color-border);
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 12px;
}
.footer-links {
    margin-top: 12px;
}
.footer-links a {
    color: var(--color-text-secondary);
    margin: 0 8px;
}
/* ==========================================================
   IMAGE CARD
========================================================== */
.image-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card img {
    max-width: 100%;
    height: auto;
    display: block;
	border-radius: var(--radius-lg);
}
/* ==========================================================
   LIVE INDICATOR
========================================================== */
.live-indicator {
    width: 12px;
    height: 12px;
    background: var(--color-profit);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 15px rgba(34,197,94,.8);
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
	0% { transform: scale(0.5); opacity: .75; }
	50% { transform: scale(1.25); opacity: 1; }
	100% { transform: scale(0.5); opacity: .75; }
}
/* ==========================================================
   RESPONSIVE LAYOUT
========================================================== */
@media(max-width:1400px) {
    .page-layout-dashboard {
        grid-template-columns: minmax(0,1fr) 400px;
        grid-template-areas: "main sidebar";
    }
	.ads {
		display: none;
	}
}
@media(max-width:1200px) {
    .page-layout-dashboard {
        grid-template-columns: minmax(0,1fr) 340px;
        grid-template-areas: "main sidebar";
    }
}
@media(max-width:1000px) {
    .page-layout-dashboard {
        grid-template-columns: minmax(0,1fr) 300px;
        grid-template-areas: "main sidebar";
    }
}
@media(max-width:900px) {
    .page-layout-dashboard {
        grid-template-columns: 100%;
        grid-template-areas: "main" "sidebar";
    }
	.hero-layout {
		margin: 40px auto;
	}
	.hero-layout h1 {
		font-size: 32px;
	}
	.hero-layout p {
		font-size: 16px;
	}
	.statement-layout {
		margin: 50px auto;
	}
	.statement-layout h2 {
		font-size: 26px;
	}
	.split-layout {
		grid-template-columns: 1fr;
		gap: 30px;
		margin: 50px auto;
	}
	.split-panel {
		padding: 24px;
	}
	.footer-container {
		grid-template-columns: repeat(2,1fr);
	}
    .trader-profile-header-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width:520px) {
	.logo {
		font-size: 34px;
	}	
	.button-primary, 
	.button-secondary {
        padding: 8px;
    }
	.footer-container {
		grid-template-columns: 1fr;
	}
}
@media(max-width:460px) {
	.logo {
		font-size: 30px;
	}	
	.logo img {
        display: none;
    }
}
