body {
    background: #050505;
    color: #ffffff;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Avatar im Navigationsmenü */
.user-with-avatar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px !important;
}

.nav-avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #444;
    object-fit: cover;
}

.user-with-avatar .username {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9em;
}

/* Für den Fallback Avatar */
.user-with-avatar .fa-user-circle {
    font-size: 22px;
    color: #e91916;
}

/* Hover-Effekt für den User-Link */
.user-with-avatar:hover .nav-avatar {
    border-color: #e91916;
}

.user-with-avatar:hover .fa-user-circle {
    color: #fff;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .user-with-avatar .username {
        max-width: 80px;
    }
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header - BREITER mit fester HÃ¶he */
.modern-header {
    background: #0a0a0a;
    border-bottom: 1px solid #333333;
    padding: 0;
    min-height: 100px;
    position: relative;
}

.header-top {
    background: #050505;
    padding: 10px 0;
    border-bottom: 1px solid #333333;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

/* Banner - BREITER */
.main-banner {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    padding: 80px 20px;
    border-bottom: 1px solid #333333;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: #888888;
    max-width: 800px;
    margin: 0 auto 30px;
}

.banner-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: #e91916;
    text-decoration: none;
}

.nav-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e91916;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 4px;
    padding: 10px 0;
    min-width: 200px;
    display: none;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: #0a0a0a;
    text-decoration: none;
    color: #ffffff;
}

/* Main Content - VIEL BREITER */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    flex: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.content-main {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 40px;
}

.content-sidebar {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 30px;
}

/* BREITERE FEATURE CARDS fÃ¼r home.php */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    padding: 40px 30px;
    transition: border-color 0.3s ease;
    min-height: 280px;
}

.feature-card:hover {
    border-color: #ffffff;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ffffff;
    opacity: 0.9;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-description {
    color: #888888;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BREITERE STREAM CARDS fÃ¼r home.php */
.stream-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stream-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    min-height: 300px;
}

.stream-card:hover {
    border-color: #ffffff;
    transform: translateY(-5px);
}

.stream-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #333333;
    text-align: center;
}

.stream-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.stream-category {
    color: #888888;
    font-size: 0.9rem;
}

.stream-preview {
    height: 200px;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* BREITERE CONTENT CARDS fÃ¼r home.php */
.content-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.content-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    padding: 30px;
    transition: border-color 0.3s ease;
    min-height: 200px;
}

.content-card:hover {
    border-color: #ffffff;
}

.content-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.content-description {
    color: #888888;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer - BREITER */
.modern-footer {
    background: #0a0a0a;
    border-top: 1px solid #333333;
    padding: 80px 0 40px;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 600;
    border-bottom: 2px solid #e91916;
    padding-bottom: 12px;
    display: inline-block;
}

.footer-section p {
    color: #888888;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 2px solid #333333;
    padding-top: 40px;
    text-align: center;
}

.copyright {
    color: #888888;
    font-size: 1rem;
    margin-bottom: 60px;
}

.footer-links {
    display: flex;
    gap: 35px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #e91916;
    text-decoration: none;
    background: #1a1a1a;
}

.footer-credits {
    color: #888888;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Discord Widget - BREITER */
.discord-widget {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333333;
    min-height: 350px;
}

/* Last Seen Users */
.last-seen-users {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #1a1a1a;
    border-radius: 6px;
    border: 1px solid #333333;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e91916;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}

.user-name {
    color: #ffffff;
    font-size: 1rem;
}

.user-time {
    color: #888888;
    font-size: 0.9rem;
    margin-left: auto;
}

/* Buttons */
.btn-modern {
    background: transparent;
    color: #ffffff;
    border: 1px solid #333333;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-modern:hover {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
    text-decoration: none;
}

.btn-primary {
    background: #ffffff;
    color: #0a0a0a;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
}

/* Login Panel */
.login-panel {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.login-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
    padding-bottom: 10px;
}

/* Status Bar */
.status-bar {
    background: #050505;
    padding: 8px 0;
    border-bottom: 1px solid #333333;
    font-size: 0.8rem;
    color: #888888;
}

.status-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header Player Button - Nur Grafik Ã¼ber Header */
.play-btn-container {
    width: 180px;
    height: 180px;
    position: absolute;
    top: -20px;
    left: 40%;
    transform: translateX(-1%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 10;
}

.play-btn-container:hover {
    transform: scale(1.1);
}

.play-btn-container.playing {
    filter: drop-shadow(0 0 8px rgba(40, 167, 69, 0.5));
}

.play-btn-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    cursor: pointer;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.play-btn-container.playing .play-btn-img {
    animation: pulse 2s infinite;
}

@media (max-width: 1200px) {
    .play-btn-container {
        width: 140px;
        height: 140px;
        top: -15px;
        left: 45%;
        transform: translateX(-5%);
    }
    .play-btn-img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .play-btn-container {
        width: 100px;
        height: 100px;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    .play-btn-img {
        width: 100px;
        height: 100px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .header-container,
    .main-content,
    .footer-container,
    .status-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .content-grid {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
    
    .grid-3,
    .stream-grid,
    .content-grid-home {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .grid-3,
    .stream-grid,
    .content-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-main {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .grid-3,
    .stream-grid,
    .content-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .header-container,
    .main-content,
    .footer-container {
        padding: 0 15px;
    }
    
    .feature-card,
    .content-card {
        min-height: auto;
        padding: 25px 20px;
    }
    
    .stream-card {
        min-height: 280px;
    }
}

/* Image Rotate */
#rotate {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
    
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    
    overflow: hidden;
}

#rotate:hover { 
    -webkit-transform: rotate(720deg);
    -moz-transform: rotate(720deg); 
    -o-transform: rotate(720deg);
}

div#pagination {
    font-family: tahoma;
    text-align: right;
}

#pagination span {
    display: block;
    float: left;
    font-size: 11px;
    line-height: 13px;
    margin: 2px 6px 2px 0;
}

#pagination span a {
    background-color: #ffffff;
    border: 1px solid #bbbbbb;
    color: #303030;
    display: block;
    padding: 1px 5px 2px 5px;
    text-decoration: none;
}

#pagination span a:hover, #pagination span a:active {
    background-color: #bbbbbb;
    border: 1px solid #303030;
}

#pagination span.aktuell {
    background-color: #303030;
    border: 1px solid #303030;
    color: #ffffff;
    font-size: 11px;
    padding: 1px 5px 2px 5px;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    color: #000;
}

a.side {
    color: #888888;
}

a.side:hover {
    color: #ff6600;
    text-decoration: none;
}

a.top {
    color: #000000;
}

a.top:hover {
    color: #ffffff;
    text-decoration: none;
}

a.mod {
    color: #ffffff;
}

a.mod:hover {
    color: #ff6600;
    text-decoration: none;
}

a.news {
    color: #ffffff;
    font-weight: bold;
    margin-top: -20px;
}

a.news:hover {
    color: #000000;
    text-decoration: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 2px solid #eee;
    margin: 4px 0;
    padding: 0;
}

hr.side-hr {
    height: 1px;
    border: 1px solid #eee;
}

div {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
}

pre {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
}

.alt {
    color: #04688d;
}

.spacer {
    margin-bottom: 5px;
}

.bullet {
    /* for IE */
    filter: alpha(opacity=30);
    /* CSS3 standard */
    opacity: 0.3;
}

.likebox {
    position: fixed;
    cursor: pointer;
    left: 0;
    top: 250px;
}

/* Styles */
.textbox {
    border: medium none;
    color: #fff;
    margin: 0;
    padding-left: 5px;
    padding-right: 5px;
    background: #121212;
    border: 1px solid #383838;
    min-width: 100px;
}

.admin-message {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: 10px 9px #F9E5E6;
    border-color: #F7C7C9;
    border-image: none;
    border-style: solid;
    border-width: 1px 1px 1px 4px;
    color: #B3696C;
    width: 500px;
    height: 50px;
    font-size: 10px;
    padding-top: 10px;
}

/** Fusion Forms **/
form {
    margin: 0px;
}

.bbcode {
    font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
    font-size: 10px;
    color: #fff;
    background: #171717;
    border: 1px solid #383838;
    border-radius: 2px 2px 2px 2px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.bbcode:hover {
    background-color: #ccc;
    border: 1px solid #0088CC;
}

.bbcode:focus {
    color: #3C3C3D;
    background-color: #f5f5f5;
    border-color: #0088CC;
    box-shadow: inset 2px 2px 2px #e1e1e1;
    -moz-box-shadow: inset 2px 2px 2px #e1e1e1;
    -webkit-box-shadow: inset 2px 2px 2px #e1e1e1;
}

.bbcode-popup {
    font-size: 11px;
    color: #555;
    width: auto !important;
    height: auto !important;
    background-color: #fff;
    border: 1px solid #CACACA !important;
    padding: 4px;
    margin-top: 2px;
    cursor: pointer;
    z-index: 999;
}

.button {
    font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
    font-size: 13px;
    display: inline-block;
    padding: 5px 7px;
    line-height: 1;
    color: #3C3C3D;
    text-shadow: 1px 1px 0 #FFFFFF;
    background: #ECECEC;
    white-space: nowrap;
    cursor: pointer;
    overflow: visible;
    text-decoration: none;
    border: 1px solid #CACACA;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-background-clip: padding-box;
    border-radius: 2px;
    outline: none;
}

/* Tabellen */
.tbl-border {
    border: 1px solid #383838;
}

.tbl {
    font-size: 12px;
    color: #fff;
    background-color: #171717;
    padding: 4px;
    border-left: 1px solid #383838;
    border-right: 1px solid #383838;
    border-top: 1px solid #383838;
    border-bottom: 1px solid #383838;
}

.tbl1 {
    font-size: 14px;
    font-weight: normal;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    text-align: left;
    padding: 4px;
    color: #fff;
    background-color: #171717;
    border-top: 1px solid #383838;
}

.tbl2 {
    font-size: 14px;
    font-weight: normal;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    text-align: left;
    padding: 4px;
    color: #ffffff;
    background: none repeat scroll 0% 0% #141414;
    background-color: #141414;
    border-top: 1px solid #383838;
}

.tbl-error {
    color: #AC260F;
    font-weight: bold;
    background-color: #F9F9F9;
    border: 1px solid #DDDDDD;
}

/* Default */
.center {
    margin: 0 auto;
}

.quote {
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    font-weight: normal;
    background: #333 url(images/icons/quote_icon.png) 6px 8px no-repeat;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #ccc;
    padding: 5px 6px 5px 30px;
    margin: 0px 22px 0px 22px;
}

.poll {
    height: 12px;
    border: 1px solid #bbb;
}

.small {
    font-size: 10px;
    font-weight: normal;
    color: #ffffff;
}

.small2 {
    font-size: 10px;
    font-weight: normal;
    color: #555;
}

/* Forum */
/* Forum table properties */
.forum-caption {
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    background-color: #222222;
    padding: 2px 4px 4px 4px;
    margin-bottom: 10px;
    border: 1px solid #ffffff;
}

.forum_breadcrumbs {
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
    background: #222222 url(images/right.png) 6px 5px no-repeat;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 5px 6px 5px 30px;
    margin: 0;
}

.forum_thread_user_post {
    background-color: #141414;
    border-top: 1px solid #383838;
    border-bottom: 1px solid #383838;
    border-right: 1px solid #383838;
    color: #fff;
}

.forum_thread_user_info {
    background-color: #141414;
    border-top: 1px solid #383838;
    border-right: 1px solid #383838;
    border-bottom: 1px solid #383838;
    border-left: 1px solid #383838;
}

.forum_thread_table {
    border-spacing: 0;
    border: 1px solid #383838;
}

.forum_thread_user_name {
    background-color: #171717;
    border-top: 1px solid #383838;
    border-left: 1px solid #383838;
    border-right: 1px solid #383838;
}

.forum_thread_post_date {
    background-color: #171717;
    border-top: 1px solid #383838;
    border-right: 1px solid #383838;
    color: #fff;
}

.forum_thread_ip {
    background-color: #171717;
    border-bottom: 1px solid #383838;
    border-left: 1px solid #383838;
    border-right: 1px solid #383838;
    color: #fff;
}

.forum_thread_userbar {
    background-color: #171717;
    border-bottom: 1px solid #383838;
    border-right: 1px solid #383838;
    color: #fff;
}

/* Page Navigation */
.pagenav {
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 12px;
    padding: 4px;
    margin: 6px;
}

.pagenav span {
    font-weight: normal;
    color: #999;
    text-decoration: none;
    background-color: #ddd;
    border: 1px solid #cccccc;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    text-decoration: none;
    cursor: default;
    padding: 3px 8px 3px 8px;
    margin: 2px;
}

.pagenav a {
    color: #999999;
    text-decoration: none;
    border: 1px solid #383838;
    background-color: #171717;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0%, #000000), color-stop(100%, #171717));
    background-image: -webkit-linear-gradient(#000000, #171717);
    background-image: -moz-linear-gradient(#000000, #171717);
    background-image: -o-linear-gradient(#000000, #171717);
    background-image: linear-gradient(#000000, #171717);
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    padding: 4px 9px 4px 9px;
    margin: 2px;
}

.pagenav a:hover, .pagenav a:focus {
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #fff;
    background-color: #ff6600;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0%, #ff6600), color-stop(100%, #ff6600));
    background-image: -webkit-linear-gradient(#ff6600, #ff6600);
    background-image: -moz-linear-gradient(#ff6600, #ff6600);
    background-image: -o-linear-gradient(#ff6600, #ff6600);
    background-image: linear-gradient(#ff6600, #ff6600);
    box-shadow: 0 0 3px #999;
    -moz-box-shadow: 0 0 3px #999;
    -webkit-box-shadow: 0 0 3px #999;
}

/* Team */
.team-box {
    border: medium none;
    clear: both;
}

.sidebar .team-box {
    margin: 0 auto;
    width: 201px;
}

.team-description {
    width: 201px;
}

.team-image {
    display: block;
}

.team-image img {
    display: block;
    height: 201px;
    width: 201px;
}

.team-text {
    background: none repeat scroll 0 0 #2F2F2F;
    color: #fff;
    display: block;
    padding: 20px 0 !important;
    width: 201px;
}

.team-text p {
    color: #fff;
    margin-bottom: 15px;
    margin-left: 20px;
    margin-right: 10px;
}

.team-text h4, .entry .team-text h4 {
    color: #FFFFFF;
    font: 700 14px 'Open Sans';
    margin-bottom: 0;
    margin-left: 20px;
}

.team-text h5, .entry .team-text h5 {
    color: #FFFFFF;
    margin-bottom: 0;
    margin-left: 20px;
}

.team-text .team-contact {
    color: #FFFFFF;
    font-style: italic;
    margin-left: 20px;
}

.team-box-hover {
    cursor: pointer;
    height: 201px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    width: 201px;
}

.sidebar .team-box-hover {
    height: 201px;
    margin: 0 auto;
    width: 201px;
}

.team-box-hover img {
    height: 201px;
    width: 201px;
}

.team-box-hover .team-description:hover .team-image {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0;
}

.team-box-hover .team-text {
    height: 201px;
    width: 201px;
}

a.tooltip {outline:none; }
a.tooltip strong {line-height:30px;}
a.tooltip:hover {text-decoration:none;}
a.tooltip span {z-index:9999;display:none; padding:14px 20px; margin-top:20px; margin-left:-20px; min-width:180px; line-height:16px;}
a.tooltip:hover span{ display:inline; position:absolute; border:2px solid #FFF; color:#EEE; background:#000 url(includes/css-tooltip-gradient-bg.png) repeat-x 0 0;}
.callout {z-index:20;position:absolute;border:0;top:-14px;left:120px;}
/*CSS3 extras*/
a.tooltip span {border-radius:4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; -moz-box-shadow: 0px 0px 8px 4px #666; -webkit-box-shadow: 0px 0px 8px 4px #666; box-shadow: 0px 0px 8px 4px #666;}

a.tooltipf {outline:none;}
a.tooltipf strong {line-height:30px;}
a.tooltipf:hover {text-decoration:none;}
a.tooltipf span {z-index:9999;display:none; padding:14px 20px; margin-top:20px; margin-left:-20px; min-width:350px; line-height:16px;}
a.tooltipf:hover span{ display:inline; position:absolute; border:2px solid #FFF; color:#EEE; background:#000 url(includes/css-tooltip-gradient-bg.png) repeat-x 0 0;}
.callout {z-index:20;position:absolute;border:0;top:-14px;left:120px;}
/*CSS3 extras*/
a.tooltipf span {border-radius:4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; -moz-box-shadow: 0px 0px 8px 4px #666; -webkit-box-shadow: 0px 0px 8px 4px #666; box-shadow: 0px 0px 8px 4px #666;}

a.tooltipd {outline:none;}
a.tooltipd strong {line-height:30px;}
a.tooltipd:hover {text-decoration:none;}
a.tooltipd span {z-index:9999;display:none; padding:14px 20px; margin-top:20px; margin-left:-20px; width:350px; line-height:16px;}
a.tooltipd:hover span{ display:inline; position:absolute; border:2px solid #FFF; color:#EEE; background:#000 url(includes/css-tooltip-gradient-bg.png) repeat-x 0 0;}
.callout {z-index:20;position:absolute;border:0;top:-14px;left:120px;}
/*CSS3 extras*/
a.tooltipd span {border-radius:4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; -moz-box-shadow: 0px 0px 8px 4px #666; -webkit-box-shadow: 0px 0px 8px 4px #666; box-shadow: 0px 0px 8px 4px #666;}

sli {
    font-size: 17.5px;
    color: #fff;
}

.avaforum {
    border: 1px solid #CACACA;
    border-radius: 40px 40px 40px 40px;
}

/* Buzz */
@-webkit-keyframes buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

@keyframes buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

.buzz {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.buzz:hover, .buzz:focus, .buzz:active {
  -webkit-animation-name: buzz;
  animation-name: buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Buzz Out */
@-webkit-keyframes buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.buzz-out {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.buzz-out:hover, .buzz-out:focus, .buzz-out:active {
  -webkit-animation-name: buzz-out;
  animation-name: buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.roll {
    border: 2px solid #CCCCCC;
    border-radius: 50px;
    height: 100px;
    width: 100px;
}

.round-button {
    width: 20%;
    height: 0;
    padding-bottom: 10%;
    border-radius: 50%;
    border: 2px solid #f5f5f5;
    overflow: hidden;
    background: #ff6600;
    box-shadow: 0 0 3px gray;
    float: left;
}
.round-button:hover {
    background: #262626;
}
.round-button img {
    display: block;
    width: 76%;
    padding: 12%;
    height: auto;
}

.buttons {
    margin-top: 160px;
}

.buttons a {
    margin-right: 30px;
    width: 64px;
    height: 64px;
    display: inline-block;
    position: relative;
    line-height: 64px;
    background-color: #eaeaea;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#eaeaea));
    background-image: -webkit-linear-gradient(top, #f6f6f6, #eaeaea);
    background-image: -moz-linear-gradient(top, #f6f6f6, #eaeaea);
    background-image: -ms-linear-gradient(top, #f6f6f6, #eaeaea);
    background-image: -o-linear-gradient(top, #f6f6f6, #eaeaea);
    background-image: linear-gradient(top, #f6f6f6, #eaeaea);
    -moz-border-radius: 32px;
    -webkit-border-radius: 32px;
    border-radius: 32px;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .25), 0 2px 3px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .25), 0 2px 3px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .25), 0 2px 3px rgba(0, 0, 0, .1);
}

.buttons a:active {
    top: 1px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#eaeaea), to(#f6f6f6));
    background-image: -webkit-linear-gradient(top, #eaeaea, #f6f6f6);
    background-image: -moz-linear-gradient(top, #eaeaea, #f6f6f6);
    background-image: -ms-linear-gradient(top, #eaeaea, #f6f6f6);
    background-image: -o-linear-gradient(top, #eaeaea, #f6f6f6);
    background-image: linear-gradient(top, #eaeaea, #f6f6f6);
}

.buttons a::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    background-color: #eaeaea;
    -moz-border-radius: 140px;
    -webkit-border-radius: 140px;
    border-radius: 140px;
    opacity: 0.5;
}

.buttons a:active::before {
    top: -9px;
}

.buttons a:hover::before { opacity: 1; }

.buttons a.twitter:hover::before {
    background-color: #c6f0f8;
}

.buttons a.facebook:hover::before {
    background-color: #dae1f0;
}

.buttons a.dribble:hover::before {
    background-color: #fadae6;
}

.buttons a.rss:hover::before {
    background-color: #f8ebb6;
}

.twitter img { vertical-align: -7px; }
.dribble img { vertical-align: -12px; }
.facebook img { vertical-align: -12px;}
.rss img { vertical-align: -7px;}

.buttons a img { border: 0; }

img.desaturate {
    filter: grayscale(100%);
}